get comments
Retrieve comments from TabNews content by specifying the username and slug, enabling easy access to user discussions and feedback on articles.
Instructions
get comments from a content on tabnews api
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slug | Yes | The slug to get the content | |
username | Yes | The username to get the content |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"slug": {
"description": "The slug to get the content",
"type": "string"
},
"username": {
"description": "The username to get the content",
"type": "string"
}
},
"required": [
"username",
"slug"
],
"type": "object"
}